We need to update the call to gtk4-application-demo, plus include the
correct icon file for this.
"comments", "Program to demonstrate GTK+ functions.",
"authors", authors,
"documenters", documentors,
- "logo-icon-name", "gtk3-demo",
+ "logo-icon-name", "gtk4-demo",
"title", "About GTK+ Code Demos",
NULL);
}
const gchar *command;
GError *error = NULL;
- if (g_file_test ("./gtk3-demo-application" APP_EXTENSION, G_FILE_TEST_IS_EXECUTABLE))
- command = "./gtk3-demo-application" APP_EXTENSION;
+ if (g_file_test ("./gtk4-demo-application" APP_EXTENSION, G_FILE_TEST_IS_EXECUTABLE))
+ command = "./gtk4-demo-application" APP_EXTENSION;
else
- command = "gtk3-demo-application";
+ command = "gtk4-demo-application";
if (!g_spawn_command_line_async (command, &error))
{